Conditions | 1 |
Total Lines | 22 |
Code Lines | 18 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import React from 'react' |
||
43 | |||
44 | /** |
||
45 | * Render component. |
||
46 | */ |
||
47 | render() { |
||
48 | return ( |
||
49 | <div className="Header"> |
||
50 | <div className="header__inner"> |
||
51 | <a href="https://new.library.arizona.edu" className="logo"> |
||
52 | <ReactSVG path={branding} /> |
||
53 | </a> |
||
54 | <div className="header__uicontrols-outer"> |
||
55 | <div className="header__uicontrols" id="header__uicontrols"> |
||
56 | <AccountControl /> |
||
57 | <HelpControl |
||
58 | handler={this.helpControlHandler} |
||
59 | open={this.state.helpControlActive} |
||
60 | /> |
||
61 | </div> |
||
62 | </div> |
||
63 | </div> |
||
64 | </div> |
||
65 | ) |
||
70 |